home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / GUICreate.au3 < prev    next >
Text File  |  2006-06-17  |  793b  |  33 lines

  1. ; example 1
  2. #include <GUIConstants.au3>
  3.  
  4. GUICreate("My GUI")  ; will create a dialog box that when displayed is centered
  5. GUISetState (@SW_SHOW)       ; will display an empty dialog box
  6.  
  7. ; Run the GUI until the dialog is closed
  8. While 1
  9.     $msg = GUIGetMsg()
  10.     
  11.     If $msg = $GUI_EVENT_CLOSE Then ExitLoop
  12. Wend
  13.     
  14.     
  15. ; example 2
  16. #include <GUIConstants.au3>
  17.  
  18. $gui=GUICreate("Background", 800, 300)
  19. ; background picture
  20. $background = GUICtrlCreatePic ("demo-bg.jpg", 0, 0, 800, 300)
  21. GUISetState(@SW_SHOW)
  22.  
  23. ; transparent child window
  24. $pic=GUICreate("", 14, 80, 0, 0,$WS_POPUP,$WS_EX_LAYERED+$WS_EX_MDICHILD,$gui)
  25. ; transparent pic
  26. $basti_stay = GUICtrlCreatePic ("l_st.gif", 0, 0, 14, 80)
  27. GUISetState(@SW_SHOW)
  28.  
  29. do
  30.     $msg = GUIGetMsg()
  31.     
  32. until $msg = $GUI_EVENT_CLOSE
  33.